home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdio / vscanf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-11  |  123 b   |  6 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3.  
  4. int vscanf(const char *format,va_list args)
  5. { return vfscanf(stdin,format,args); }
  6.